home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / vbdatabs / chslist.cpp < prev    next >
C/C++ Source or Header  |  1999-03-14  |  4KB  |  140 lines

  1. // ------------------------------- //
  2. // -------- Start of File -------- //
  3. // ------------------------------- //
  4. // ----------------------------------------------------------- // 
  5. // C++ Source Code File Name: chslist.cpp
  6. // Compiler Used: MSVC40, DJGPP 2.7.2.1, GCC 2.7.2.1, HP CPP 10.24
  7. // Produced By: Doug Gaer 
  8. // File Creation Date: 12/29/1996
  9. // Date Last Modified: 03/15/1999
  10. // Copyright (c) 1997 Douglas M. Gaer
  11. // ----------------------------------------------------------- // 
  12. // ------------- Program Description and Details ------------- // 
  13. // ----------------------------------------------------------- // 
  14. /*
  15. The VBD C++ classes are copyright (c) 1997, by Douglas M. Gaer.
  16. All those who put this code or its derivatives in a commercial
  17. product MUST mention this copyright in their documentation for
  18. users of the products in which this code or its derivative
  19. classes are used. Otherwise, you have the freedom to redistribute
  20. verbatim copies of this source code, adapt it to your specific
  21. needs, or improve the code and release your improvements to the
  22. public provided that the modified files carry prominent notices
  23. stating that you changed the files and the date of any change.
  24.  
  25. THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.
  26. THE ENTIRE RISK OF THE QUALITY AND PERFORMANCE OF THIS SOFTWARE
  27. IS WITH YOU. SHOULD ANY ELEMENT OF THIS SOFTWARE PROVE DEFECTIVE,
  28. YOU WILL ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR
  29. CORRECTION.
  30.  
  31. A character string singly linked list class derived from the
  32. SNodeBase class and the SLListBase class.
  33. */
  34. // ----------------------------------------------------------- // 
  35. #include <string.h>
  36. #include "chslist.h"
  37.  
  38. ChSList::~ChSList()
  39. {
  40.   Clear();
  41. }
  42.  
  43. int ChSList::Copy(const ChSList &List)
  44. {
  45.   return SLListBase::Copy(List);
  46. }
  47.  
  48. ChSNode *ChSList::AllocNode(const SLTYPE &X)
  49. {
  50.   return new ChSNode(X);
  51. }
  52.  
  53. SNodeBase *ChSList::DupNode(const SNodeBase *Node)
  54. {
  55.   return AllocNode(((ChSNode *)Node)->Data);
  56. }
  57.  
  58. void ChSList::FreeNode(SNodeBase *Node)
  59. {
  60.   delete((ChSNode *)Node);
  61. }
  62.  
  63. const ChSNode *ChSList::Find(const SLTYPE &X, const ChSNode *ptr) const
  64. // Returns the first node having an element that matched X
  65. {
  66.   if(ptr == 0) ptr = GetFront();
  67.  
  68.   while(!IsHeader(ptr)) { // Scan until end of list
  69.     if(strcmp(ptr->Data, X) == 0) return ptr; // Match found
  70.     ptr = ptr->GetNext();
  71.   }
  72.   return 0; // No match
  73. }
  74.  
  75. ChSNode *ChSList::Find(const SLTYPE &X, ChSNode *ptr)
  76. // Returns the first node having an element that matched X
  77. {
  78.   if(ptr == 0) ptr = GetFront();
  79.  
  80.   while(!IsHeader(ptr)) { // Scan until end of list
  81.     if(strcmp(ptr->Data, X) == 0) return ptr; // Match found
  82.     ptr = ptr->GetNext();
  83.   }
  84.   return 0; // No match
  85. }
  86.  
  87. int ChSList::DeleteNext(ChSNode *Node, SLTYPE *X)
  88. {
  89.   ChSNode *ptr = RmvNext(Node);
  90.   if(ptr) {
  91.     if(X) *X = ptr->Data; // Copy Data into X if X != 0
  92.     FreeNode(ptr);
  93.     return 1; // Return 1 if successful
  94.   }
  95.   return 0; 
  96. }
  97.  
  98. int ChSList::DeleteFront(SLTYPE *X)
  99. {
  100.   ChSNode *ptr = RmvFront();
  101.   if(ptr) {
  102.     if(X) *X = ptr->Data; // Copy Data into X if X != 0
  103.     FreeNode(ptr);
  104.     return 1; // Return 1 if successful
  105.   }
  106.   return 0; 
  107. }
  108.  
  109. ChSNode *ChSList::Store(const SLTYPE &X)
  110. {
  111.   ChSNode *ptr = AllocNode(X);
  112.   if(ptr) AttachToBack(ptr);
  113.   return ptr; // Return a pointer to the node added
  114. }
  115.  
  116. ChSNode *ChSList::AddToFront(const SLTYPE &X)
  117. {
  118.   ChSNode *ptr = AllocNode(X);
  119.   if(ptr) AttachToFront(ptr);
  120.   return ptr; // Return a pointer to the node added
  121. }
  122.  
  123. ChSNode *ChSList::AddToBack(const SLTYPE &X)
  124. {
  125.   ChSNode *ptr = AllocNode(X);
  126.   if(ptr) AttachToBack(ptr);
  127.   return ptr; // Return a pointer to the node added
  128. }
  129.  
  130. ChSNode *ChSList::AddAfter(const SLTYPE &X, ChSNode *Node)
  131. {
  132.   ChSNode *ptr = AllocNode(X);
  133.   if(ptr) InsertAfter(Node, ptr);
  134.   return ptr; // Return a pointer to the node added
  135. }
  136. // ----------------------------------------------------------- //
  137. // ------------------------------- //
  138. // --------- End of File --------- //
  139. // ------------------------------- //
  140.